In [1]:
import uuid
import time as pytime
import operator
from django.utils.html import urlize
from constance import config
from IPython.display import display_pretty, display_html, display_jpeg, display_png, display_json, display_latex, display_svg
from mongoengine.queryset import Q
from oneflow.core.models import *
from oneflow.base.utils.dateutils import *
def html(thing):
display_html(thing, raw=True)
def urlblank(text):
return urlize(text).replace('<a ', '<a target="_blank" ')
In [2]:
open_feeds = Feed.objects(Q(closed=False) | Q(closed__exists=False))
open_feeds_count = open_feeds.count()
open_feeds_count
Out[2]:
4076
In [3]:
lower_value = None
loop_count = 0
fetched_feeds = 0
periods_feeds = []
delta_lengths = (
timedelta(seconds=config.FEED_FETCH_DEFAULT_INTERVAL),
timedelta(seconds=config.FEED_FETCH_DEFAULT_INTERVAL * 2),
timedelta(seconds=config.FEED_FETCH_DEFAULT_INTERVAL * 6),
timedelta(seconds=config.FEED_FETCH_DEFAULT_INTERVAL * 12),
timedelta(days=1),
timedelta(days=2),
timedelta(days=3),
timedelta(days=4),
timedelta(days=5),
timedelta(days=6),
timedelta(days=7),
timedelta(days=10),
None
)
for delta in delta_lengths:
upper_value = (now() - delta) if delta else None
if lower_value is None:
kwargs = {'last_fetch__gt': upper_value}
elif upper_value is None:
kwargs = {'last_fetch__lte': lower_value}
else:
kwargs = {'last_fetch__lte': lower_value, 'last_fetch__gt': upper_value}
feeds = Feed.objects(**kwargs)
count = feeds.count()
percent = count * 100.0 / open_feeds_count
avg_interval = sum(f.fetch_interval for f in feeds) * 1.0 / (count or 1.0)
print '%s feeds (%.1f%%) fetched' % (count, percent),
if lower_value is None:
print 'less than %s ago' % naturaldelta(upper_value),
elif upper_value is None:
print 'more than %s ago' % naturaldelta(lower_value),
else:
print 'between %s and %s ago' % (naturaldelta(lower_value), naturaldelta(upper_value)),
print ", avg fetch interval: %s — in periods_feeds[%s]" % (naturaldelta(avg_interval), loop_count)
periods_feeds.append(feeds)
fetched_feeds += count
lower_value = upper_value
loop_count += 1
if fetched_feeds == open_feeds_count:
print '\n>>> All open feeds are beiing fetched.'
else:
print '%s total feeds fetched, out of %s open feeds.' % (fetched_feeds, open_feeds_count)
2833 feeds (69.5%) fetched less than an hour ago , avg fetch interval: an hour — in periods_feeds[0]
73 feeds (1.8%) fetched between an hour and 2 hours ago , avg fetch interval: 3 hours — in periods_feeds[1]
747 feeds (18.3%) fetched between 2 hours and 6 hours ago , avg fetch interval: 6 hours — in periods_feeds[2]
381 feeds (9.3%) fetched between 6 hours and 12 hours ago , avg fetch interval: 8 hours — in periods_feeds[3]
39 feeds (1.0%) fetched between 12 hours and a day ago , avg fetch interval: 8 hours — in periods_feeds[4]
2 feeds (0.0%) fetched between a day and 2 days ago , avg fetch interval: 3 hours — in periods_feeds[5]
0 feeds (0.0%) fetched between 2 days and 3 days ago , avg fetch interval: a moment — in periods_feeds[6]
0 feeds (0.0%) fetched between 3 days and 4 days ago , avg fetch interval: a moment — in periods_feeds[7]
0 feeds (0.0%) fetched between 4 days and 5 days ago , avg fetch interval: a moment — in periods_feeds[8]
4 feeds (0.1%) fetched between 5 days and 6 days ago , avg fetch interval: an hour — in periods_feeds[9]
0 feeds (0.0%) fetched between 6 days and 7 days ago , avg fetch interval: a moment — in periods_feeds[10]
0 feeds (0.0%) fetched between 7 days and 10 days ago , avg fetch interval: a moment — in periods_feeds[11]
1 feeds (0.0%) fetched more than 10 days ago , avg fetch interval: an hour — in periods_feeds[12]
4080 total feeds fetched, out of 4076 open feeds.
In [8]:
html('<ul>')
for feed in periods_feeds[8]:
html(u'<li><a href="http://1flow.io/admin/models/feed/{feed.id}/" target="_blank">{feed.name}</a>'
u'— {url}<ul><li>interval: {feed.fetch_interval}, fetched {last}, '
u'{feed.recent_articles_count}/{feed.all_articles_count} articles</li>'
u'<li>{feed.errors}<li></ul></li>'.format(
feed=feed, url=urlblank(feed.url), last=naturaltime(feed.last_fetch)))
html('</ul>')
Digital Edge Blog— http://www.naa.org/blog/digitaledge/rss.cfm- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Surfrider Foundation— http://www.surfrider.eu/en/accueil/rss.xml- interval: 3600, fetched 4 days ago, 37/311 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:29:53.365335+00:00']
BEZDNA.SU— http://bezdna.su/rss.php- interval: 3600, fetched 4 days ago, 400/1127 articles
- [u'document declared as us-ascii, but parsed as windows-1251 @@2013-07-16T23:29:54.165297+00:00']
ZDNet— http://www.zdnet.fr/feeds/rss/actualites/- interval: 3600, fetched 4 days ago, 118/146 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:29:53.522603+00:00']
Le flux RSS DTC— http://danstonchat.com/rss.xml- interval: 3600, fetched 4 days ago, 509/7862 articles
- []
FredCavazza.net— http://www.fredcavazza.net/feed/- interval: 3600, fetched 4 days ago, 2/59 articles
- []
Freenews— http://www.freenews.fr/feeds/rss.php- interval: 3600, fetched 4 days ago, 42/46 articles
- []
ploum.net | ploum.net— http://ploum.net/feed- interval: 3600, fetched 4 days ago, 4/66 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:30:01.387606+00:00']
eMarketer Articles— http://feeds.emarketer.com/Articles.xml?src=rss_top_right_newsltr- interval: 3600, fetched 4 days ago, 27/27 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:30:00.117741+00:00']
Actualité Tom's Hardware FR— http://www.presence-pc.com/rss.xml- interval: 3600, fetched 4 days ago, 436/851 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:30:01.093741+00:00']
I, Cringely @ PBS.org— http://www.pbs.org/cringely/pulpit/rss2.xml- interval: 3600, fetched 4 days ago, 0/15 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:30:04.309234+00:00']
Magazine Publishers of America: Latest News— http://www.magazine.org/rssHome.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:05.272752+00:00']
The Kelsey Group Blog— http://206.106.174.250/blog/RSS2.asp?action=category&ci=1- interval: 3600, fetched 4 days ago, 10/10 articles
- [u'document declared as US-ASCII, but parsed as ISO-8859-2 @@2013-07-16T23:30:07.797298+00:00']
What's New from the Newspaper Association of America— http://www.naa.org/naa.rss.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html is not an XML media type @@2013-07-16T23:30:05.501714+00:00']
Wired News: Technology— http://www.wired.com/rss/technology.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html;charset=UTF-8 is not an XML media type @@2013-07-16T23:30:05.773227+00:00']
Univers Freebox— http://www.universfreebox.com/backend.php?id_rubrique=6- interval: 3600, fetched 4 days ago, 23/23 articles
- [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:30:06.673255+00:00']
Univers Freebox— http://www.universfreebox.com/backend.php?id_rubrique=29- interval: 3600, fetched 4 days ago, 49/49 articles
- []
Univers Freebox— http://www.universfreebox.com/backend.php?id_rubrique=1- interval: 3600, fetched 4 days ago, 23/23 articles
- []
Unshelved— http://www.unshelved.com/rss.aspx- interval: 3600, fetched 4 days ago, 25/25 articles
- []
ZDNet News— http://www.zdnet.fr/feeds/rss/actualites/?l=20- interval: 3600, fetched 4 days ago, 39/39 articles
- []
Toutelatele.com— http://www.toutelatele.com/backend.php3- interval: 3600, fetched 4 days ago, 0/272 articles
- []
Vigicrues : Rhin GCA— http://www.vigicrues.gouv.fr/rss/?codeTron=SA13- interval: 3600, fetched 4 days ago, 1/2 articles
- []
Les nuits de Lavige— http://radiofrance-podcast.net/podcast09/rss_11528.xml- interval: 3600, fetched 4 days ago, 0/59 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:30:08.657621+00:00']
ESC Gaming Tournament— http://www.esc-gaming-tournament.com/feeds/posts/default- interval: 3600, fetched 4 days ago, 0/1 articles
- []
Sustainablog— http://sustainablog.org/feed/- interval: 3600, fetched 4 days ago, 0/1 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:30:10.501640+00:00']
Librairie du commerce international - UBIFRANCE— http://www.ubifrance.fr/rss/librairie.aspx- interval: 3600, fetched 4 days ago, 833/2609 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:30:11.129239+00:00']
Shacknews— http://www.shacknews.com/rss?recent_articles=1- interval: 3600, fetched 4 days ago, 2699/12065 articles
- [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:30:11.256787+00:00']
A List Apart: The Full Feed— http://www.alistapart.com/rss.xml- interval: 3600, fetched 4 days ago, 0/185 articles
- []
Node.js Blog— http://blog.nodejs.org/feed/- interval: 3600, fetched 4 days ago, 4/4 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:30:13.556865+00:00']
HTML5Rocks - Posts & Tutorials— http://www.html5rocks.com/tutorials/index.xml- interval: 3600, fetched 4 days ago, 0/20 articles
- [u'document declared as utf-8, application/atom+xml, but parsed as utf-8 @@2013-07-16T23:30:11.849220+00:00']
[>WiziShop] Conseils et e-commerce— http://rssblog.wizishop.com/Wizishop- interval: 3600, fetched 4 days ago, 48/195 articles
- []
Blagues de Geek - le RSS !— http://www.blaguesdegeek.com/rss2.php- interval: 3600, fetched 4 days ago, 0/5 articles
- []
blog.nodejitsu.com— http://blog.nodejitsu.com/feed.xml- interval: 3600, fetched 4 days ago, 18/106 articles
- []
Dialed In (MP3)— http://dialedinpodcast.cnet.com/- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:30:15.157637+00:00']
HBH News Feed— http://www.hellboundhackers.org/news/rss.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:30:15.313332+00:00']
Instapaper: HTML5 & CSS3— http://www.instapaper.com/folder/378166/rss/719604/h9IRhs3lOu9U3VUKDTV9nYtqUE- interval: 3600, fetched 4 days ago, 0/10 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:16.197968+00:00']
Instapaper: JavaScript— http://www.instapaper.com/folder/378167/rss/719604/h9IRhs3lOu9U3VUKDTV9nYtqUE- interval: 3600, fetched 4 days ago, 0/10 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:16.721195+00:00']
La création de Windows 7— http://blogs.msdn.com/error-notfound.aspx?aspxerrorpath=/b/ie/e7fr/atom.aspx- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Logiciel (Mac)— http://madfilm2.com/v2/index.php/logiciel-mac?format=feed&type=rss- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:18.313771+00:00']
News et articles clubic— http://www.clubic.com/articles.rss?delete=1- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:19.264730+00:00']
RSD— http://www.blogger.com/rsd.g?blogID=5257504379924813482- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:30:19.733773+00:00']
Sous-titres Jouteya— http://www.jouteya.net/Michael-Jackson/subs_rss.php- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:30:20.817206+00:00']
Stanimir Stoyanov\'s Blog— http://winjade.net/blogs/- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html is not an XML media type @@2013-07-16T23:30:21.643392+00:00']
Terra Pixela— http://www.terrapixela.com/feed- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:21.933233+00:00']
Ziki - Vos notifications— http://www.ziki.com/fr/account/notifications?aid=22254&zkey=ab76eef5c9a1e63978068b7ee289d108- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'document declared as us-ascii, but parsed as ISO-8859-2 @@2013-07-16T23:30:24.115461+00:00']
BizCity— http://www.bizcity.ro/syndication/rss.php- interval: 3600, fetched 4 days ago, 223/10332 articles
- []
Coding Horror— http://www.codinghorror.com/blog/index.xml- interval: 3600, fetched 4 days ago, 0/380 articles
- []
Dilbert Daily Strip— http://feed.dilbert.com/dilbert/daily_strip- interval: 3600, fetched 4 days ago, 166/919 articles
- []
Mute magazine - Culture and politics after the net— http://www.metamute.org/en/node/feed- interval: 3600, fetched 4 days ago, 0/132 articles
- [u'
:103:915: not well-formed (invalid token) @@2013-07-16T23:30:28.725252+00:00']
The Venus Project Blog— http://thevenusproject.com/blog/feed/- interval: 3600, fetched 4 days ago, 0/44 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:27.213382+00:00']
INCIDENTAL COMICS— http://thoughtballoonhelium.blogspot.com/feeds/posts/default- interval: 3600, fetched 4 days ago, 0/1 articles
- []
Noutati Fonduri Structurale - Informatie in sprijinul ideii tale— http://www.fonduri-structurale.ro/rss.aspx- interval: 3600, fetched 4 days ago, 985/10878 articles
- []
Inima Bacăului— http://www.inimabacaului.ro/feeds/posts/default- interval: 3600, fetched 4 days ago, 0/6 articles
- []
Saturday Morning Breakfast Cereal— http://www.smbc-comics.com/rss.php- interval: 3600, fetched 4 days ago, 167/1332 articles
- []
Web Upd8 - Ubuntu / Linux blog— http://webupd8.blogspot.com/feeds/posts/default- interval: 3600, fetched 4 days ago, 0/1 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:30:33.158970+00:00']
Random Etc.— http://www.processingblogs.org/feed/- interval: 3600, fetched 4 days ago, 0/15 articles
- []
linux360 Feed Aggregator— http://planet.linux360.ro/rss20.xml- interval: 3600, fetched 4 days ago, 23/87 articles
- []
1UP RSS feed— http://rss.1up.com/rss?x=1- interval: 3600, fetched 4 days ago, 116/373 articles
- [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:30:32.580727+00:00']
A Daily Dose of Architecture— http://archidose.blogspot.com/atom.xml- interval: 3600, fetched 4 days ago, 177/200 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:30:33.577241+00:00']
A List Apart— http://www.alistapart.com/site/rss- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Accessibility in the News— http://ncdae.org/rss/ncdaenews.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:30:32.169239+00:00']
Afraid to Trade.com Blog— http://blog.afraidtotrade.com/feed/- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Al-Ahram Weekly Online— http://weekly.ahram.org.eg/front.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html is not an XML media type @@2013-07-16T23:30:33.888206+00:00']
All Categories - Browse - gigapedia.org— http://gigapedia.org/feeds.rss- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:30:34.225321+00:00']
Anthropology of Sound— http://www.soundstudies.info/feed/- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
@@2013-07-16T23:30:34.483794+00:00']
ASIFA-Hollywood Animation Archive— http://www.animationarchive.org/atom.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:30:37.297376+00:00']
AsiaMedia Southeast Asia News— http://www.asiamedia.ucla.edu/rss/rss-southeastasia.asp- interval: 3600, fetched 4 days ago, 0/15 articles
- [u'text/html is not an XML media type @@2013-07-16T23:30:39.689578+00:00']
AutoWeek - Latest Car News Feed— http://www.autoweek.com/apps/pbcs.dll/section?category=rss01- interval: 3600, fetched 4 days ago, 64/64 articles
- []
Archinect.com Feed— http://archinect.com/news.xml- interval: 3600, fetched 4 days ago, 65/65 articles
- []
BerryReview— http://rss.berryreview.com/Berryreview- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:30:41.962893+00:00']
Bike Snob NYC— http://bikesnobnyc.blogspot.com/feeds/posts/default- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:30:41.509236+00:00']
Bill Cara— http://www.billcara.com/atom.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html is not an XML media type @@2013-07-16T23:30:39.971125+00:00']
bit-tech.net News Feed— http://www.bit-tech.net/xml/news.rss- interval: 3600, fetched 4 days ago, 0/0 articles
- []
BlackBerry Cool— http://www.blackberrycool.com/feed/- interval: 3600, fetched 4 days ago, 0/0 articles
- []
BLACKFIVE— http://www.blackfive.net/main/atom.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:30:41.725242+00:00']
Blog of Soh Tanaka— http://www.sohtanaka.com/feed/- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:30:41.209230+00:00']
BLOG.FASHIONBUSINESSREPORT.COM— http://blog.fashionbusinessreport.com/rss2.aspx- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:21:64: not well-formed (invalid token) @@2013-07-16T23:30:41.988113+00:00']
Benno's Blog— http://benno.id.au/blog/feed/- interval: 3600, fetched 4 days ago, 6/10 articles
- []
brand-m— http://www.brand-m.biz/feed- interval: 3600, fetched 4 days ago, 37/37 articles
- []
Centauri Dreams— http://www.centauri-dreams.org/?feed=rss2- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:30:47.393001+00:00']
BizTalk Server Team Blog— http://blogs.msdn.com/biztalk_server_team_blog/rss.xml- interval: 3600, fetched 4 days ago, 12/26 articles
- []
Comic RSS Feed— http://www.themysticalforestzone.com/insonicnia/inc/feed.php- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html is not an XML media type @@2013-07-16T23:30:48.116986+00:00']
brooklynvegan— http://www.brooklynvegan.com/atom.xml- interval: 3600, fetched 4 days ago, 114/114 articles
- []
Corporate Identity Portal Nachrichten— http://www.ci-portal.de/index.php?id=185&type=100- interval: 3600, fetched 4 days ago, 0/0 articles
- [u"HTTP Error 301: Moved Permanently - Redirection to url 'feed://www.ci-portal.de/feed/' is not allowed @@2013-07-16T23:30:48.938382+00:00"]
DailySnap.com— http://www.dailysnap.com/rss.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Daily MTG— http://www.wizards.com/rss.asp?x=magic- interval: 3600, fetched 4 days ago, 28/28 articles
- []
Dienekes’ Anthropology Blog— http://dienekes.blogspot.com/feeds/posts/default- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Dilbert— http://www.caesar.nl/CaesarRSS/DilbertRSS.aspx- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:53.233259+00:00']
DIYPhotography.net -DIY Photography and Studio Lighting— http://www.diyphotography.net/node/feed- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:30:56.131846+00:00']
DomainNews - Domain Name News, The Domain Industry News, ICANN News, Registry News, Domainer News, Domain— http://www.domainnews.com/feed/rss/- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:54.613231+00:00']
EnviroLink News Service— http://www.envirolink.org/environews.rss- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html is not an XML media type @@2013-07-16T23:30:56.769320+00:00']
eMarketer Articles and Newsroom Posts— http://feeds.emarketer.com/Articles.xml- interval: 3600, fetched 4 days ago, 12/12 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:30:57.009364+00:00']
EUobserver.com - Headline News— http://euobserver.com/9/?rss=1- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:57.685991+00:00']
Everblue— http://everblue-comic.com/feed/- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:30:57.441232+00:00']
Feministe— http://www.feministe.us/blog/feed/- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Fat Cyclist— http://www.fatcyclist.com/feed/- interval: 3600, fetched 4 days ago, 14/14 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:31:01.120462+00:00']
Featured Crockpot Slow Cooker Recipes at CDKitchen.com— http://crockpot.cdkitchen.com/recipes/rss/newrecipes_rss2.xml- interval: 3600, fetched 4 days ago, 39/39 articles
- []
FOREX.com's Weekly Strategy— http://www.forex.com/weekly.xml- interval: 3600, fetched 4 days ago, 1/1 articles
- []
FOXSports.com News for NFL— http://msn.foxsports.com/feedout/syndicatedContent?categoryId=5- interval: 3600, fetched 4 days ago, 18/18 articles
- [u'text/html is not an XML media type @@2013-07-16T23:31:01.401379+00:00']
Free exchange— http://www.economist.com/blogs/freeexchange/atom.xml- interval: 3600, fetched 4 days ago, 28/28 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:31:03.453399+00:00']
Gambit— http://gambit.blogs.nytimes.com/rss2.xml- interval: 3600, fetched 4 days ago, 0/15 articles
- []
Education Week American Education News Site of Record— http://www.edweek.org/ew/rss1.xml- interval: 3600, fetched 4 days ago, 0/146 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:04.813040+00:00']
futuregirl craft blog— http://www.futuregirl.com/craft_blog/atom.xml- interval: 3600, fetched 4 days ago, 28/28 articles
- []
GEO.de— http://img.geo.de/rss/GEO/index.xml- interval: 3600, fetched 4 days ago, 21/21 articles
- [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:31:05.612776+00:00']
GEO.de— http://www.geo.de/rss/GEO/index.xml- interval: 3600, fetched 4 days ago, 16/16 articles
- [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:31:06.033233+00:00']
Google Code Blog— http://googlecode.blogspot.com/atom.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Google Developers Blog— http://code.google.com/feeds/updates.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:31:08.707471+00:00']
Google Webmaster Central Blog— http://googlewebmastercentral.blogspot.com/atom.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:31:08.553243+00:00']
GameKnot online chess news— http://gameknot.com/rss_news.pl- interval: 3600, fetched 4 days ago, 34/34 articles
- [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:31:08.405230+00:00']
How to Avoid the Bummer Life— http://www.howtoavoidthebummerlife.com/weblog/atom.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:31:09.717317+00:00']
IEBlog— http://blogs.msdn.com/ie/rss.xml- interval: 3600, fetched 4 days ago, 24/24 articles
- []
JREF News— http://www.randi.org/joom/index2.php?option=com_rss&feed=RSS2.0&no_html=1- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Lalai LOADED— http://lalai.net/feed/- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:31:12.170897+00:00']
Klona : ShiftyLook.com— http://www.shiftylook.com/comics/rss/klonoa- interval: 3600, fetched 4 days ago, 0/10 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:31:12.897076+00:00']
Little Hokum Rag— http://amycrehore.blogspot.com/feeds/posts/default- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:31:14.164763+00:00']
jQuery Forum— http://forum.jquery.com/feed- interval: 3600, fetched 4 days ago, 347/347 articles
- []
MacOSXHints.com— http://www.macosxhints.com/backend/geeklog.rdf- interval: 3600, fetched 4 days ago, 24/24 articles
- [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:31:17.931534+00:00']
KurzweilAI » Blog— http://www.kurzweilai.net/blog/feed/atom- interval: 3600, fetched 4 days ago, 37/50 articles
- [u'
:1907:481: not well-formed (invalid token) @@2013-07-16T23:31:23.976097+00:00']
The Wotch— http://www.thewotch.com/feed.php- interval: 3600, fetched 4 days ago, 10/10 articles
- []
Timbuktu Chronicles— http://timbuktuchronicles.blogspot.com/atom.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Understanding Google Places & Local Search— http://blumenthals.com/blog/feed/- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Top Questions - Social Sound Design— http://socialsounddesign.com/feeds- interval: 3600, fetched 4 days ago, 61/87 articles
- []
VIBEcomic RSS— http://www.vibecomic.com/rss.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:31:22.878214+00:00']
TheaterMania.com— http://www.theatermania.com/rss.xml- interval: 3600, fetched 4 days ago, 75/75 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:24.345270+00:00']
Waveformless— http://waveformless.blogspot.com/feeds/posts/default- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:31:26.061231+00:00']
Well— http://well.blogs.nytimes.com/feed/- interval: 3600, fetched 4 days ago, 33/33 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:31:28.149250+00:00']
www.wwf.de: Aktuelle Nachrichten— http://www.wwf.de/presse/rss.xml- interval: 3600, fetched 4 days ago, 11/11 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:29.287482+00:00']
Seth's Blog— http://sethgodin.typepad.com/seths_blog/atom.xml- interval: 3600, fetched 4 days ago, 0/1 articles
- [u'
:16:67: mismatched tag @@2013-07-16T23:31:30.553456+00:00']
Windows Server Blog— http://blogs.technet.com/windowsserver/rss.xml- interval: 3600, fetched 4 days ago, 26/26 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:33.013224+00:00']
DRIVE.RU— http://www.drive.ru/export/rss.xml- interval: 3600, fetched 4 days ago, 799/799 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:31:30.437660+00:00']
ZDNet | The Ed Bott Report Blog RSS— http://blogs.zdnet.com/Bott/wp-rss2.php- interval: 3600, fetched 4 days ago, 21/21 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:33.683866+00:00']
WordPress Planet— http://planet.wordpress.org/feed/- interval: 3600, fetched 4 days ago, 77/77 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:33.672189+00:00']
Публикации / Hi-Tech@Mail.ru— http://hi-tech.mail.ru/rss/all/- interval: 3600, fetched 4 days ago, 1469/2258 articles
- []
Топ-30 постов— http://top.artlebedev.ru/rss/- interval: 3600, fetched 4 days ago, 2190/2260 articles
- []
LAUGHSPIN— http://www.laughspin.com/feed/- interval: 3600, fetched 4 days ago, 572/2737 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:35.421300+00:00']
NY Voice: Sound of the City— http://blogs.villagevoice.com/music/rss.xml- interval: 3600, fetched 4 days ago, 678/7956 articles
- []
The Classical: Articles— http://theclassical.org/rss/articles/all- interval: 3600, fetched 4 days ago, 195/752 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:31:35.785239+00:00']
Mirth Magazine— http://mirthmag.com/feed/- interval: 3600, fetched 4 days ago, 0/5 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:31:36.129027+00:00']
Goldstar New York— http://feeds.goldstar.com/goldstar-new-york- interval: 3600, fetched 4 days ago, 0/2 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:31:37.877297+00:00']
iTnews— http://www.itnews.com.au/Rss/Rss.aspx- interval: 3600, fetched 4 days ago, 0/3 articles
- [u'text/html is not an XML media type @@2013-07-16T23:31:38.501113+00:00']
All Shook Down— http://blogs.sfweekly.com/shookdown/rss.xml- interval: 3600, fetched 4 days ago, 33/45 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:39.153025+00:00']
SFoodie— http://blogs.sfweekly.com/foodie/rss.xml- interval: 3600, fetched 4 days ago, 35/53 articles
- []
DAILY SYDNEY: Get to know Sydney's subculture— http://www.dailysydney.com/feeds/posts/default?alt=rss- interval: 3600, fetched 4 days ago, 0/2 articles
- []
Latest News— http://www.itwire.com/index2.php?option=com_rss&feed=RSS2.0&no_html=1- interval: 3600, fetched 4 days ago, 0/2 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:31:42.480489+00:00']
Drowned In Sound // Feed— http://drownedinsound.com/feeds/all/feed.xml- interval: 3600, fetched 4 days ago, 35/71 articles
- []
Sixshot.com Urban— http://www.sixshot.com/newsfeed/rssnews.asp- interval: 3600, fetched 4 days ago, 0/3 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:31:41.745909+00:00']
Festival Preview - Your first stop for live music events— http://www.festivalpreview.com/beta/rss.xml- interval: 3600, fetched 4 days ago, 0/2 articles
- []
Burntpiano— http://burntpiano.com/feed/- interval: 3600, fetched 4 days ago, 0/3 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:31:42.262891+00:00']
Network2 Blog— http://blog.network2.tv/feed/- interval: 3600, fetched 4 days ago, 0/1 articles
- [u'text/html is not an XML media type @@2013-07-16T23:31:43.237222+00:00']
Businesshackers - only leading startups— http://www.businesshackers.com/feed/atom/- interval: 3600, fetched 4 days ago, 0/2 articles
- []
Bitsplitting.org— http://bitsplitting.org/feed/- interval: 3600, fetched 4 days ago, 24/35 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:43.902064+00:00']
Daniel Jalkut— http://www.red-sweater.com/blog/feed- interval: 3600, fetched 4 days ago, 6/176 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:44.253242+00:00']
iPhone.AppStorm— http://iphone.appstorm.net/feed/- interval: 3600, fetched 4 days ago, 262/1979 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:31:51.270959+00:00']
PhoneArena— http://www.phonearena.com/feed- interval: 3600, fetched 4 days ago, 440/441 articles
- []
Ihnatko@Times— http://www.suntimes.com/rss/?path=/suntimes/technology/ihnatko- interval: 3600, fetched 4 days ago, 21/274 articles
- []
BBC Sport - Football— http://feeds.bbci.co.uk/sport/0/football/rss.xml- interval: 3600, fetched 4 days ago, 5788/17699 articles
- []
MacLife Reviews— http://www.maclife.com/articles/22/feed- interval: 3600, fetched 4 days ago, 455/2590 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:31:47.221246+00:00']
RAPPAMELO— http://rappamelo.com/feed/- interval: 3600, fetched 4 days ago, 306/2630 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:31:47.101222+00:00']
OS X Daily— http://osxdaily.com/feed/- interval: 3600, fetched 4 days ago, 320/4068 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:49.260813+00:00']
MacUpdate— https://www.macupdate.com/members/wartchlist_rss/251021:6dbaf3d36743d7be235c5a0235037182- interval: 3600, fetched 4 days ago, 78/78 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:50.060889+00:00']
Webin Blog— http://webinhq.com/blog/rss- interval: 3600, fetched 4 days ago, 3/3 articles
- []
Apprendre la photo— http://apprendre-la-photo.fr/feed/- interval: 3600, fetched 4 days ago, 18/181 articles
- []
Juste Sublime— http://www.justesublime.fr/feed/- interval: 3600, fetched 4 days ago, 112/606 articles
- []
Le Blog de Madame C— http://leblogdemadamec.fr/accueil/feed/- interval: 3600, fetched 4 days ago, 0/200 articles
- [u'
:34:138: not well-formed (invalid token) @@2013-07-16T23:31:53.428791+00:00']
Presse-Citron— http://www.presse-citron.net/feed- interval: 3600, fetched 4 days ago, 589/591 articles
- []
Trendy Wedding— http://www.trendyweddingleblog.com/feeds/posts/default- interval: 3600, fetched 4 days ago, 59/576 articles
- []
Flysurf.com news channel— http://www.flysurf.com/kitenews.rss- interval: 3600, fetched 4 days ago, 317/1750 articles
- []
Minimalissimo— http://minimalissimo.com/feed/- interval: 3600, fetched 4 days ago, 163/984 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:31:55.009235+00:00']
Marco.org— http://www.marco.org/rss- interval: 3600, fetched 4 days ago, 162/1894 articles
- []
WBD — WEBDRAMA.ORG— http://webdrama.org/archiv/?feed=rss2- interval: 3600, fetched 4 days ago, 0/5 articles
- []
REYNALD DROUHIN | Recherches | Esquisses | Documents— http://reynald.incident.net/feed/- interval: 3600, fetched 4 days ago, 0/1 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:31:54.365236+00:00']
Les news aeiou de fluctuat.net— http://www.fluctuat.net/blog/aeiou.xml- interval: 3600, fetched 4 days ago, 0/2 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:31:54.555230+00:00']
ADEME - Toute l'actualité— http://www2.ademe.fr/rss/RSS_ADEME_16262.xml- interval: 3600, fetched 4 days ago, 0/20 articles
- [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:31:56.281343+00:00']
Le Criirem— http://www.criirem.ouvaton.org/spip.php?page=backend- interval: 3600, fetched 4 days ago, 0/1 articles
- []
The Greatest beginning— http://tony2tones.blogspot.com/feeds/posts/default- interval: 3600, fetched 4 days ago, 10/70 articles
- []
News de Manga Sanctuary— http://www.manga-sanctuary.com/RSS/news.xml- interval: 3600, fetched 4 days ago, 891/1463 articles
- []
Tnooz— http://feeds.tnooz.com/tnooz- interval: 3600, fetched 4 days ago, 858/3515 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:31:59.713232+00:00']
A List Apart— http://www.alistapart.com/feed/rss.xml- interval: 3600, fetched 4 days ago, 191/323 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:32:01.349929+00:00']
BBC Formula 1— http://newsrss.bbc.co.uk/rss/sportonline_world_edition/motorsport/formula_one/rss.xml- interval: 3600, fetched 4 days ago, 487/3295 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:32:01.333252+00:00']
Chemistry World RSS— http://www.rsc.org/chemistryworld/cwlatestnews.xml- interval: 3600, fetched 4 days ago, 65/66 articles
- []
Google Code Blog— http://googlecode.blogspot.com/feeds/posts/default- interval: 3600, fetched 4 days ago, 73/692 articles
- []
ShiftyLook Comics— http://www.shiftylook.com/comics/rss- interval: 3600, fetched 4 days ago, 387/849 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:00.484885+00:00']
DOGHOUSE— http://thedoghousediaries.com/feed- interval: 3600, fetched 4 days ago, 11/12 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:02.427597+00:00']
Dot Earth— http://dotearth.blogs.nytimes.com/rss2.xml- interval: 3600, fetched 4 days ago, 16/17 articles
- []
Dot Earth— http://dotearth.blogs.nytimes.com/feed/- interval: 3600, fetched 4 days ago, 2/2 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:01.005232+00:00']
Instructables: exploring— http://www.instructables.com/tag/type:instructable/rss.xml- interval: 3600, fetched 4 days ago, 554/555 articles
- [u'text/html is not an XML media type @@2013-07-16T23:32:01.457400+00:00']
IT infrastructure news— http://rss.techtarget.com/185.xml- interval: 3600, fetched 4 days ago, 20/20 articles
- []
Mark's Blog— http://blogs.technet.com/markrussinovich/rss.xml- interval: 3600, fetched 4 days ago, 0/25 articles
- []
MarketingProfs Daily Fix Blog— http://www.mpdailyfix.com/index.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Renewable Energy News - RenewableEnergyWorld.com— http://www.renewableenergyaccess.com/rss/renews.rss- interval: 3600, fetched 4 days ago, 53/53 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:32:03.813300+00:00']
The Rhizome Frontpage RSS— http://rhizome.org/syndicate/fp.rss- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:5:0: syntax error @@2013-07-16T23:32:05.749616+00:00']
the style files— http://style-files.com/feed/- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:32:08.300940+00:00']
e-Autosound— http://www.e-autosound.de/feed/- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:32:08.152217+00:00']
JNJ BTW— http://jnjbtw.com/?feed=rss2- interval: 3600, fetched 4 days ago, 0/0 articles
- []
SynthGear— http://www.synthgear.com/feed/- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Strobist— http://strobist.blogspot.com/feeds/posts/default- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:32:10.408452+00:00']
Tablet PC Talk News— http://www.tabletpctalk.com/scripts/newspro/news.xml- interval: 3600, fetched 4 days ago, 0/5 articles
- [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:32:10.842290+00:00']
TasteSpotting— http://www.tastespotting.com/rss- interval: 3600, fetched 4 days ago, 0/311 articles
- [u'application/octet-stream is not an XML media type @@2013-07-16T23:32:11.318241+00:00']
Squid Ninja RSS Kicker— http://www.squidninja.com/rss-kicker.xml- interval: 3600, fetched 4 days ago, 0/1 articles
- [u'
:18:9: not well-formed (invalid token) @@2013-07-16T23:32:11.109249+00:00']
Stephen W. Thomas BizTalk Blog— http://geekswithblogs.net/sthomas/Rss.aspx- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html is not an XML media type @@2013-07-16T23:32:11.426290+00:00']
Snafu News: Grim Tales From Down Below— http://www.snafu-comics.com/feed.php?comic_id=12- interval: 3600, fetched 4 days ago, 11/11 articles
- [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:32:12.369241+00:00']
tagesschau.de - Die Nachrichten der ARD— http://www3.tagesschau.de/xml/tagesschau-meldungen/- interval: 3600, fetched 4 days ago, 0/170 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:32:12.481266+00:00']
Sister Claire— http://www.sisterclaire.com/feed/- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:32:13.144181+00:00']
ShiftyLook Comics— http://www.shiftylook.com/comics/rss/wondermomo- interval: 3600, fetched 4 days ago, 0/9 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:13.933265+00:00']
Shanghaiist— http://www.shanghaiist.com/index.rdf- interval: 3600, fetched 4 days ago, 0/0 articles
- []
SearchNetworking: News on networking, mobility and voice— http://rss.techtarget.com/42.xml- interval: 3600, fetched 4 days ago, 5/20 articles
- [u'text/html is not an XML media type @@2013-07-16T23:32:14.749239+00:00']
Seth's Blog— http://sethgodin.typepad.com/seths_blog/index.rdf- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:16:67: mismatched tag @@2013-07-16T23:32:16.653237+00:00']
SearchWindowsServer: Expert advice on Windows-based systems and hardware— http://rss.techtarget.com/43.xml- interval: 3600, fetched 4 days ago, 20/20 articles
- [u'text/html is not an XML media type @@2013-07-16T23:32:16.253297+00:00']
Remote Desktop Services (Terminal Services) Team Blog— http://blogs.msdn.com/ts/rss.xml- interval: 3600, fetched 4 days ago, 13/26 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:32:20.358286+00:00']
Recipe of the Day from RealSimple.com— http://rss.realsimple.com/web/realsimple/rss/recipes/index.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Refinery29— http://www.refinery29.com/index.xml- interval: 3600, fetched 4 days ago, 387/387 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:32:21.681247+00:00']
Proceedings of the National Academy of Sciences— http://www.pnas.org/rss/current.xml- interval: 3600, fetched 4 days ago, 0/178 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:32:23.130647+00:00']
Primewares - Latest programs— http://www.all4you.dk/FreewareWorld/rss.php- interval: 3600, fetched 4 days ago, 0/0 articles
- []
POPsickleSTRIP— http://rss.popstrip.com/- interval: 3600, fetched 4 days ago, 6/6 articles
- [u'text/html is not an XML media type @@2013-07-16T23:32:22.376300+00:00']
Playbill.com : Combined Feed— http://www.playbill.com/rss/articles.asp?FEATURE_TYPE=Combined_Feed- interval: 3600, fetched 4 days ago, 234/234 articles
- [u'text/html; charset=ISO-8859-1 is not an XML media type @@2013-07-16T23:32:23.514049+00:00']
PharmaGossip— http://pharmagossip.blogspot.com/feeds/posts/default- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:32:26.171883+00:00']
PEA Soup— http://peasoup.typepad.com/peasoup/atom.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:32:27.732469+00:00']
Paul Krugman— http://krugman.blogs.nytimes.com/rss2.xml- interval: 3600, fetched 4 days ago, 31/31 articles
- [u'
:26:2: mismatched tag @@2013-07-16T23:32:27.529155+00:00']
Parenting.com: Mom Tips and Expert Advice— http://rss.parenting.com/web/parenting/rss/rssfeed/index.xml- interval: 3600, fetched 4 days ago, 3/3 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:32:28.680519+00:00']
Outside Innovation— http://outsideinnovation.blogs.com/pseybold/atom.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Orange Crate Art— http://mleddy.blogspot.com/feeds/posts/default- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:32:28.084049+00:00']
On the Runway— http://runway.blogs.nytimes.com/feed/- interval: 3600, fetched 4 days ago, 24/24 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:29.370046+00:00']
NoGodBlog.com - Limited to 8 last days— http://www.atheists.org/nogodblog/xmlsrv/atom.php?blog=2- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html is not an XML media type @@2013-07-16T23:32:31.717090+00:00']
News Tom's Hardware— http://www.tomshardware.co.uk/feeds/1664-rss2-tom-s-hardware-uk.xml- interval: 3600, fetched 4 days ago, 30/30 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:34.117226+00:00']
Neuroscience Gateway— http://www.brainatlas.org/aba/rss.rdf- interval: 3600, fetched 4 days ago, 0/0 articles
- []
Modern Art Notes— http://www.artsjournal.com/man/rss.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html is not an XML media type @@2013-07-16T23:32:34.624826+00:00']
Microsoft Robotics Blog— http://blogs.msdn.com/msroboticsstudio/rss.xml- interval: 3600, fetched 4 days ago, 0/25 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:32:36.410949+00:00']
Massive Pwnage— http://www.massivepwnage.com/feed/- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:32:36.063531+00:00']
Microsoft Research News and Highlights— http://research.microsoft.com/rss/news.xml- interval: 3600, fetched 4 days ago, 25/25 articles
- []
Mark Bittman— http://bitten.blogs.nytimes.com/feed/- interval: 3600, fetched 4 days ago, 10/10 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:36.708323+00:00']
Network World NetFlash— http://www.networkworld.com/netflash.rss- interval: 3600, fetched 4 days ago, 0/72 articles
- [u'text/plain; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:42.034084+00:00']
New & Updated Freeware— http://www.fwnetwork.com/freeware/rss_main_home_new/all/- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:32:42.722757+00:00']
National Geographic News— http://news.nationalgeographic.com/index.rss- interval: 3600, fetched 4 days ago, 52/52 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:32:43.043167+00:00']
Network Monitor— http://blogs.technet.com/netmon/rss.xml- interval: 3600, fetched 4 days ago, 1/25 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:32:46.361615+00:00']
MyRecipes: Dinner Tonight RSS Feed— http://rss.cookinglight.com/web/cooking/rss/dinnertonight/index.xml- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:32:44.777381+00:00']
PowerPoint Ninja Blog - Tips & Tricks for Effective Business Presentations— http://www.powerpointninja.com/feed/- interval: 3600, fetched 4 days ago, 0/0 articles
- []
RichCommerce.fr— http://www.richcommerce.fr/feed/- interval: 3600, fetched 4 days ago, 10/10 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:29:53.657215+00:00']
French Wedding Photographer Paris Loire vallee Cote d'azur ...— http://www.olivierlalinweddings.com/feed/- interval: 3600, fetched 4 days ago, 0/9 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:29:55.249156+00:00']
UXUI— http://uxui.fr/feed/- interval: 3600, fetched 4 days ago, 0/58 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:29:55.573176+00:00']
Entreprise20.fr— http://www.entreprise20.fr/feed/- interval: 3600, fetched 4 days ago, 1/33 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:29:56.449482+00:00']
MediasSociaux.fr— http://www.mediassociaux.fr/feed/- interval: 3600, fetched 4 days ago, 11/11 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:29:56.469219+00:00']
Inside Search— http://insidesearch.blogspot.com/feeds/posts/default- interval: 3600, fetched 4 days ago, 14/149 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:29:56.857229+00:00']
500px— http://feed.500px.com/500px-editors- interval: 3600, fetched 4 days ago, 0/1614 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:29:56.977255+00:00']
Fredzone— http://www.fredzone.org/feed/- interval: 3600, fetched 4 days ago, 0/2352 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:29:57.692623+00:00']
Billets de blog mis en avant - mediachroniques— http://mediachroniques.ning.com/profiles/blog/feed?promoted=1&xn_auth=no- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'no Content-type specified @@2013-07-16T23:29:57.757172+00:00']
Notes d'un économiste— http://www.leconomiste-notes.fr/dotclear/rss.php- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:29:57.977225+00:00']
Les Numériques— http://www.lesnumeriques.com/rss.xml- interval: 3600, fetched 4 days ago, 400/604 articles
- [u'
:6:14: undefined entity @@2013-07-16T23:29:58.245208+00:00']
BBC News - Home— http://feeds.bbci.co.uk/news/rss.xml- interval: 3600, fetched 4 days ago, 864/1316 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:29:58.477197+00:00']
Globenet - breves— http://www.globenet.org/spip.php?page=rss-breves- interval: 3600, fetched 4 days ago, 3/22 articles
- [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:29:58.933194+00:00']
businessMOBILE.fr: Solutions mobiles— http://www.businessmobile.fr/flux/rss/solutions-mobiles/- interval: 3600, fetched 4 days ago, 41/41 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:29:59.204119+00:00']
Agence Bibliosurf.com— http://www.bibliobernt.net/spip.php?page=backend- interval: 3600, fetched 4 days ago, 0/0 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:29:59.464591+00:00']
ReadWrite— http://readwrite.com/main/feed/articles.xml- interval: 3600, fetched 4 days ago, 55/804 articles
- [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:30:01.858258+00:00']
GreenIT.fr— http://greenit.fr/frontpage/feed- interval: 3600, fetched 4 days ago, 102/2054 articles
- [u'
:6:36: undefined entity @@2013-07-16T23:32:46.881246+00:00']
Manpower.fr - Offres Aquitaine— http://www.manpower.fr/emploi/rss/offresRss.action?idRegion=101- interval: 3600, fetched 4 days ago, 487/487 articles
- [u'
:43:2: mismatched tag @@2013-07-16T23:32:48.061233+00:00']
comics.cevamarunt.ro— http://comics.cevamarunt.ro/feed/- interval: 3600, fetched 4 days ago, 18/589 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:32:51.194790+00:00']
Tom's Hardware - Actualité matériel informatique, multimédia, Internet— http://www.tomshardware.fr/feeds/rss2/tom-s-hardware-fr,1-1.xml- interval: 3600, fetched 4 days ago, 945/21191 articles
- [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:53.311525+00:00']
Korben (to be merged with 51c9f2cde7a05b27f6a23360, merge subscribers)— http://feeds.feedburner.com/KorbensBlog-UpgradeYourMind- interval: 3600, fetched 4 days ago, 201/203 articles
- [u'
:11:2: mismatched tag @@2013-07-16T23:32:54.458858+00:00']
In [ ]:
Content source: WillianPaiva/1flow
Similar notebooks: